From 99d29a0c3f9ab3218f261d5861f978b8d79f5db8 Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Fri, 1 Dec 2006 14:29:32 +0000 Subject: [PATCH] [XEN] Remove uses of 'extern inline'. Original patch by Christoph Egger at AMD. Signed-off-by: Keir Fraser --- xen/include/asm-ia64/elf.h | 2 +- xen/include/asm-powerpc/elf.h | 2 +- xen/include/asm-x86/x86_32/elf.h | 2 +- xen/include/asm-x86/x86_64/elf.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/xen/include/asm-ia64/elf.h b/xen/include/asm-ia64/elf.h index fbd92bf4cd..0bdbd9c735 100644 --- a/xen/include/asm-ia64/elf.h +++ b/xen/include/asm-ia64/elf.h @@ -11,7 +11,7 @@ typedef struct { unsigned long dummy; } crash_xen_core_t; -extern inline void elf_core_save_regs(ELF_Gregset *core_regs, +static inline void elf_core_save_regs(ELF_Gregset *core_regs, crash_xen_core_t *xen_core_regs) { printk("STUB: " __FILE__ ": %s: not implemented\n", __FUNCTION__); diff --git a/xen/include/asm-powerpc/elf.h b/xen/include/asm-powerpc/elf.h index 24fc958387..3877c0f5fa 100644 --- a/xen/include/asm-powerpc/elf.h +++ b/xen/include/asm-powerpc/elf.h @@ -11,7 +11,7 @@ typedef struct { unsigned long dummy; } crash_xen_core_t; -extern inline void elf_core_save_regs(ELF_Gregset *core_regs, +static inline void elf_core_save_regs(ELF_Gregset *core_regs, crash_xen_core_t *xen_core_regs) { printk("STUB: " __FILE__ ": %s: not implemented\n", __FUNCTION__); diff --git a/xen/include/asm-x86/x86_32/elf.h b/xen/include/asm-x86/x86_32/elf.h index a70bd223f2..1aa4e07148 100644 --- a/xen/include/asm-x86/x86_32/elf.h +++ b/xen/include/asm-x86/x86_32/elf.h @@ -23,7 +23,7 @@ typedef struct { unsigned long ss; } ELF_Gregset; -extern inline void elf_core_save_regs(ELF_Gregset *core_regs, +static inline void elf_core_save_regs(ELF_Gregset *core_regs, crash_xen_core_t *xen_core_regs) { unsigned long tmp; diff --git a/xen/include/asm-x86/x86_64/elf.h b/xen/include/asm-x86/x86_64/elf.h index 75f191b43c..39c90b76f6 100644 --- a/xen/include/asm-x86/x86_64/elf.h +++ b/xen/include/asm-x86/x86_64/elf.h @@ -33,7 +33,7 @@ typedef struct { unsigned long gs; } ELF_Gregset; -extern inline void elf_core_save_regs(ELF_Gregset *core_regs, +static inline void elf_core_save_regs(ELF_Gregset *core_regs, crash_xen_core_t *xen_core_regs) { unsigned long tmp; -- 2.30.2